Recently, I had to expand a search query for one of our customers. The original query was something like this:
http://servername/dbname.nsf/viewname?SearchView&Query=([fieldname_1]=e-mail-home)AND([fieldname_2]=anything)&SearchFuzzy=True&SearchMax=1000
This worked without a problem on all mentioned platforms. Then I changed it to the following:
http://servername/dbname.nsf/viewname?SearchView&Query=([fieldname_1]=e-mail-home)AND(([fieldname_2]=anything)OR([fieldname_2]=otherthing%20more))&SearchFuzzy=True&SearchMax=1000
On our 5.011 Windows 2000 Advanced server, this worked, as well as on our 6.02CF1 RH Linux 8 servers. However, our clients' entire Domino server immediately crashed after executing the URL! This is a 6.03 Windows 2003 server. After doing some testing on other platforms, I discovered that the crash also occurs on 6.5 on wXP home, wXP Professional and w2003 server.
The string "otherthing%20more" contains %20. If this is left out, the crash doesn't occur. The server also crashes if %20 is replaced by +.
Has anyone else encountered this bug? Can I do something about it?